home *** CD-ROM | disk | FTP | other *** search
- // Requires: version 2.1d
- //
- // Script example to illustrate new script commands in
- // version 2.1d.
- //
- // new: day, date, time environment strings are now
- // automatically available
- //
- // new: IF TIMERANGE starttime stoptime .......
- //
- // This if condition allows for a time check
- // between a start and stop time. All times are
- // in hh:mm:ss format.
- //
-
- log date: %date% Time: %time% Day: %day%
-
- label again
-
- if timerange 18:29:00 18:30:30 then begin
- Log waiting.... %time%
- goto again
- endif
-
- Log Done!
-